SNAP Library 2.3, Developer Reference  2014-06-16 11:58:46
SNAP, a general purpose, high performance system for analysis and manipulation of large networks
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
app.h
Go to the documentation of this file.
1 // Application
3 class TApp{
4 private:
6 private:
8 public:
9  TApp(const PNotify& _Notify=NULL): Notify(_Notify){}
10  virtual ~TApp(){}
12  static TPt<TApp> Load(TSIn&){Fail; return NULL;}
13  void Save(TSOut&){Fail;}
14 
15  TApp& operator=(const TApp&){Fail; return *this;}
16 
17  friend class TPt<TApp>;
18 };
19 typedef TPt<TApp> PApp;
20 
Definition: bd.h:440
#define Fail
Definition: bd.h:238
TCRef CRef
Definition: app.h:5
TApp(const PNotify &_Notify=NULL)
Definition: app.h:9
TApp(TSIn &)
Definition: app.h:11
Definition: fl.h:58
TApp & operator=(const TApp &)
Definition: app.h:15
static TPt< TApp > Load(TSIn &)
Definition: app.h:12
PNotify Notify
Definition: app.h:7
Definition: fl.h:128
virtual ~TApp()
Definition: app.h:10
TPt< TApp > PApp
Definition: app.h:19
void Save(TSOut &)
Definition: app.h:13
Definition: app.h:3