Skip to content
Snippets Groups Projects
Post.h 550 B
Newer Older
  • Learn to ignore specific revisions
  • 
    typedef size_t Location;      // Location 0 is the null location.
    typedef size_t FileOffset;
    typedef union Attributes
    	{
    
    vcday's avatar
    vcday committed
    	WordAttributes Word;
    	DocumentAttributes Document;
    
    vcday's avatar
    vcday committed
    public:
    	//What Start / End Location
    	virtual Location GetStartLocation ( );
    
    	virtual Location GetEndLocation ( );
    
    	virtual Attributes GetAttributes ( );
    	//Returns Next next delta
    
    	//TO-DO NICK/ZANE
    	virtual Post *Next ( );
    
    	Location currentLocation;
    	//*why?
    	//virtual ISR* GetIsr( );