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

An object in Bash++. More...

#include <bpp.h>

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

Public Member Functions

 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
 
virtual std::string get_address () 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)
 

Protected Attributes

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

An object in Bash++.

Constructor & Destructor Documentation

◆ bpp_object() [1/3]

bpp::bpp_object::bpp_object ( )

◆ bpp_object() [2/3]

bpp::bpp_object::bpp_object ( const std::string &  name)
explicit

◆ bpp_object() [3/3]

bpp::bpp_object::bpp_object ( const std::string &  name,
bool  is_pointer 
)

Member Function Documentation

◆ get_address()

std::string bpp::bpp_object::get_address ( ) const
virtual

Reimplemented from bpp::bpp_entity.

Reimplemented in bpp::bpp_datamember.

◆ get_assignment_value()

std::string bpp::bpp_object::get_assignment_value ( ) const

◆ get_class()

std::shared_ptr< bpp_class > bpp::bpp_object::get_class ( ) const
virtual

Reimplemented from bpp::bpp_entity.

◆ get_copy_from()

std::shared_ptr< bpp::bpp_object > bpp::bpp_object::get_copy_from ( ) const

◆ get_name()

std::string bpp::bpp_object::get_name ( ) const
virtual

Reimplemented from bpp::bpp_entity.

◆ get_post_access_code()

std::string bpp::bpp_object::get_post_access_code ( ) const

◆ get_pre_access_code()

std::string bpp::bpp_object::get_pre_access_code ( ) const

◆ is_pointer()

bool bpp::bpp_object::is_pointer ( ) const

◆ set_address()

void bpp::bpp_object::set_address ( const std::string &  address)

◆ set_assignment_value()

void bpp::bpp_object::set_assignment_value ( const std::string &  assignment_value)

◆ set_class()

void bpp::bpp_object::set_class ( std::shared_ptr< bpp_class object_class)

◆ set_name()

void bpp::bpp_object::set_name ( const std::string &  name)

◆ set_nullptr()

void bpp::bpp_object::set_nullptr ( )

◆ set_pointer()

void bpp::bpp_object::set_pointer ( bool  is_pointer)

◆ set_post_access_code()

void bpp::bpp_object::set_post_access_code ( const std::string &  post_access_code)

◆ set_pre_access_code()

void bpp::bpp_object::set_pre_access_code ( const std::string &  pre_access_code)

Member Data Documentation

◆ address

std::string bpp::bpp_object::address = ""
protected

◆ assignment_value

std::string bpp::bpp_object::assignment_value = ""
protected

◆ copy_from

std::shared_ptr<bpp::bpp_object> bpp::bpp_object::copy_from = nullptr
protected

◆ m_is_pointer

bool bpp::bpp_object::m_is_pointer = false
protected

◆ name

std::string bpp::bpp_object::name = ""
protected

◆ post_access_code

std::string bpp::bpp_object::post_access_code = ""
protected

◆ pre_access_code

std::string bpp::bpp_object::pre_access_code = ""
protected

◆ type

std::shared_ptr<bpp_class> bpp::bpp_object::type
protected

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