PikaScript
PikaScript.cpp
1 
38 #include <algorithm>
39 #include <time.h>
40 #if !defined(PikaScript_h)
41 #include "PikaScript.h"
42 #endif
43 #if !defined(PikaScriptImpl_h)
44 #include "PikaScriptImpl.h"
45 #endif
46 
47 namespace Pika {
48 
49 template struct Script<StdConfig>;
50 
51 } // namespace Pika
Script is a meta-class that groups all the core classes of the PikaScript interpreter together (excep...
Definition: PikaScript.h:266