📄 cardlist.h
字号:
// {{{RME classifier 'Logical View::CardDefinitions::CardList'#ifndef CardList_H#define CardList_H#ifdef PRAGMA#pragma interface "CardList.h"#endif#include <RTSystem/CardGameComponent.h>class Card;// {{{RME tool 'OT::Cpp' property 'HeaderPreface'// {{{USR// }}}USR// }}}RMEextern const RTObject_class RTType_CardList;class CardList{public: // {{{RME tool 'OT::Cpp' property 'PublicDeclarations' // {{{USR // }}}USR // }}}RMEprotected: // {{{RME tool 'OT::Cpp' property 'ProtectedDeclarations' // {{{USR // }}}USR // }}}RMEprivate: // {{{RME tool 'OT::Cpp' property 'PrivateDeclarations' // {{{USR // }}}USR // }}}RME // {{{RME classAttribute '_size' int _size; // }}}RMEprotected: // {{{RME associationEnd '_contents' Card * _contents; // }}}RMEpublic: // {{{RME operation 'CardList(int)' CardList( int initial_size = 0 ); // }}}RME // {{{RME operation 'CardList(const CardList &)' CardList( const CardList & other ); // }}}RME // {{{RME operation '~CardList()' ~CardList( void ); // }}}RME // {{{RME operation 'size()' int size( void ) const; // }}}RME // {{{RME operation 'operator[](const int)' Card & operator[]( const int index ); // }}}RME // {{{RME operation 'operator=(const CardList &)' CardList & operator=( const CardList & rhs ); // }}}RME static const RTFieldDescriptor rtg_CardList_fields[];};struct RTTypedValue_CardList{ const void * data; const RTObject_class * type; inline RTTypedValue_CardList( const CardList & rtg_value ) : data( &rtg_value ), type( &RTType_CardList ) { } inline RTTypedValue_CardList( const CardList & rtg_value, const RTObject_class * rtg_type ) : data( &rtg_value ), type( rtg_type ) { } inline ~RTTypedValue_CardList( void ) { }};// {{{RME tool 'OT::Cpp' property 'HeaderEnding'// {{{USR// }}}USR// }}}RME#endif /* CardList_H */// }}}RME
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -