Bash++
Bash++ compiler internal documentation
Public Member Functions | Private Attributes | List of all members
bpp::bpp_datamember Class Reference

A data member in a class. More...

#include <bpp.h>

Inheritance diagram for bpp::bpp_datamember:
Inheritance graph
[legend]
Collaboration diagram for bpp::bpp_datamember:
Collaboration graph
[legend]

Public Member Functions

 bpp_datamember ()
 
void set_default_value (const std::string &default_value)
 
void set_scope (bpp_scope scope)
 
void set_array (bool is_array)
 
std::string get_address () const override
 
std::string get_default_value () const
 
bpp_scope get_scope () const
 
bool is_array () const
 
- Public Member Functions inherited from bpp::bpp_object
 bpp_object ()
 
 bpp_object (const std::string &name)
 
 bpp_object (const std::string &name, bool is_pointer)
 
void set_class (std::shared_ptr< bpp_class > object_class)
 
void set_pointer (bool is_pointer)
 
void set_name (const std::string &name)
 
void set_address (const std::string &address)
 
void set_assignment_value (const std::string &assignment_value)
 
void set_pre_access_code (const std::string &pre_access_code)
 
void set_post_access_code (const std::string &post_access_code)
 
void set_nullptr ()
 
std::string get_name () const
 
std::string get_assignment_value () const
 
std::shared_ptr< bpp_classget_class () const
 
std::string get_pre_access_code () const
 
std::string get_post_access_code () const
 
std::shared_ptr< bpp::bpp_objectget_copy_from () const
 
bool is_pointer () const
 
- Public Member Functions inherited from bpp::bpp_entity
virtual ~bpp_entity ()=default
 
virtual bool add_class (std::shared_ptr< bpp_class > class_)
 Add a class to this entity's list of classes. More...
 
virtual bool add_object (std::shared_ptr< bpp_object > object)
 Add an object to this entity's list of objects. More...
 
virtual std::weak_ptr< bpp::bpp_classget_containing_class () const
 Get the class which contains this entity. More...
 
virtual bool set_containing_class (std::weak_ptr< bpp::bpp_class > containing_class)
 
virtual void inherit (std::shared_ptr< bpp_entity > parent)
 Inherit from a parent entity. More...
 
virtual void inherit (std::shared_ptr< bpp_class > parent)
 
virtual std::unordered_map< std::string, std::shared_ptr< bpp_class > > get_classes () const
 
virtual std::unordered_map< std::string, std::shared_ptr< bpp_object > > get_objects () const
 
virtual std::shared_ptr< bpp_classget_class (const std::string &name)
 
virtual std::shared_ptr< bpp_objectget_object (const std::string &name)
 

Private Attributes

std::string default_value = ""
 
bpp_scope scope = SCOPE_PRIVATE
 
bool array = false
 

Additional Inherited Members

- Protected Attributes inherited from bpp::bpp_object
std::string name = ""
 
std::string address = ""
 
std::string assignment_value = ""
 
std::string pre_access_code = ""
 
std::string post_access_code = ""
 
std::shared_ptr< bpp_classtype
 
bool m_is_pointer = false
 
std::shared_ptr< bpp::bpp_objectcopy_from = nullptr
 
- Protected Attributes inherited from bpp::bpp_entity
std::unordered_map< std::string, std::shared_ptr< bpp_class > > classes
 A map of class names to class objects within this entity. More...
 
std::unordered_map< std::string, std::shared_ptr< bpp_object > > objects
 A map of object names to bpp_objects within this entity. More...
 
std::unordered_map< std::string, std::shared_ptr< bpp_object > > local_objects
 Like objects, but only for objects whose scope is local to this entity. More...
 
std::shared_ptr< bpp_classtype = nullptr
 
std::weak_ptr< bpp_classcontaining_class
 
std::vector< std::shared_ptr< bpp_class > > parents
 

Detailed Description

A data member in a class.

Constructor & Destructor Documentation

◆ bpp_datamember()

bpp::bpp_datamember::bpp_datamember ( )

Member Function Documentation

◆ get_address()

std::string bpp::bpp_datamember::get_address ( ) const
overridevirtual

Reimplemented from bpp::bpp_object.

◆ get_default_value()

std::string bpp::bpp_datamember::get_default_value ( ) const

◆ get_scope()

bpp_scope bpp::bpp_datamember::get_scope ( ) const

◆ is_array()

bool bpp::bpp_datamember::is_array ( ) const

◆ set_array()

void bpp::bpp_datamember::set_array ( bool  is_array)

◆ set_default_value()

void bpp::bpp_datamember::set_default_value ( const std::string &  default_value)

◆ set_scope()

void bpp::bpp_datamember::set_scope ( bpp_scope  scope)

Member Data Documentation

◆ array

bool bpp::bpp_datamember::array = false
private

◆ default_value

std::string bpp::bpp_datamember::default_value = ""
private

◆ scope

bpp_scope bpp::bpp_datamember::scope = SCOPE_PRIVATE
private

The documentation for this class was generated from the following files: