The main RC Library include file, which includes all other components. More...
#include "RCconfig.h"
#include <winsock2.h>
#include "Macros.h"
#include "Types.h"
#include "Errors.h"
#include "RCBits.h"
#include "Iter.h"
#include "Data1D.h"
#include "Data2D.h"
#include "Data3D.h"
#include "Bitfield.h"
#include "Bitfield2D.h"
#include "Bitfield3D.h"
#include "Ptr.h"
#include "APtr.h"
#include "RevPtr.h"
#include "Tuple.h"
#include "Caller.h"
#include "RStr.h"
#include "RTime.h"
#include "File.h"
#include "RND.h"
#include "Net.h"
Go to the source code of this file.
Macros | |
#define | RC_USE |
Place this shorthand macro after including RC.h to use namespaces RC and std. More... | |
#define | RC_MAIN |
This macro wraps int main so that command line arguments are placed into RC::Data1D<RC::RStr> args. More... | |
The main RC Library include file, which includes all other components.
#define RC_MAIN |
This macro wraps int main so that command line arguments are placed into RC::Data1D<RC::RStr> args.
Usually args[0] is the executable name, and 1 through args.size()-1 will be the command line parameters. Usage example: RC_MAIN { if (args.size()<2) {Help(); return -1;} Code(args[1]); Here(); return 0; }