SNAP Library 2.1, User Reference  2013-09-25 10:47:25
SNAP, a general purpose, high performance system for analysis and manipulation of large networks
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines
app.h
Go to the documentation of this file.
00001 
00002 // Application
00003 class TApp{
00004 private:
00005   TCRef CRef;
00006 private:
00007   PNotify Notify;
00008 public:
00009   TApp(const PNotify& _Notify=NULL): Notify(_Notify){}
00010   virtual ~TApp(){}
00011   TApp(TSIn&){Fail;}
00012   static TPt<TApp> Load(TSIn&){Fail; return NULL;}
00013   void Save(TSOut&){Fail;}
00014 
00015   TApp& operator=(const TApp&){Fail; return *this;}
00016 
00017   friend class TPt<TApp>;
00018 };
00019 typedef TPt<TApp> PApp;
00020