Rocstar  1.0
Rocstar multiphysics simulation application
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
clop.H File Reference
#include <cstdlib>
Include dependency graph for clop.H:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  clop
 

Macros

#define F_FUNC(x)   x
 
#define RFLUCONV   F_FUNC(RFLUCONV)
 
#define RFLUINIT   F_FUNC(RFLUINIT)
 
#define RFLUMAP   F_FUNC(RFLUMAP)
 
#define RFLUMP   F_FUNC(RFLUMP)
 
#define RFLUPART   F_FUNC(RFLUPART)
 
#define RFLUPICK   F_FUNC(RFLUPICK)
 
#define RFLUPOST   F_FUNC(RFLUPOST)
 

Functions

vector< string > Vectize (const char **)
 
vector< string > Vectize (const char **, int)
 
const string stripdir (const string &)
 
bool GetOp (const string &ops, const vector< string > &args)
 
bool GetOp (const string &ops, string &rv, const vector< string > &args)
 
bool CheckOps (const vector< string > &args, string &badop)
 
void AddOp (const string &lo, const char &so)
 

Macro Definition Documentation

#define F_FUNC (   x)    x

Definition at line 96 of file clop.H.

#define RFLUCONV   F_FUNC(RFLUCONV)

Definition at line 113 of file clop.H.

#define RFLUINIT   F_FUNC(RFLUINIT)

Definition at line 114 of file clop.H.

Referenced by main().

#define RFLUMAP   F_FUNC(RFLUMAP)

Definition at line 115 of file clop.H.

Referenced by main().

#define RFLUMP   F_FUNC(RFLUMP)

Definition at line 116 of file clop.H.

#define RFLUPART   F_FUNC(RFLUPART)

Definition at line 117 of file clop.H.

Referenced by main().

#define RFLUPICK   F_FUNC(RFLUPICK)

Definition at line 118 of file clop.H.

#define RFLUPOST   F_FUNC(RFLUPOST)

Definition at line 119 of file clop.H.

Function Documentation

void AddOp ( const string &  lo,
const char &  so 
)

Referenced by main().

Here is the caller graph for this function:

bool CheckOps ( const vector< string > &  args,
string &  badop 
)
bool GetOp ( const string &  ops,
const vector< string > &  args 
)

Referenced by main().

Here is the caller graph for this function:

bool GetOp ( const string &  ops,
string &  rv,
const vector< string > &  args 
)
const string stripdir ( const string &  )

Referenced by main().

Here is the caller graph for this function:

vector<string> Vectize ( const char **  )

Definition at line 182 of file clop.C.

References i.

Referenced by main().

183 {
184  vector<string> retVal;
185  int i = 0;
186  while(in[i] != NULL)
187  retVal.push_back(in[i++]);
188  return retVal;
189 }
blockLoc i
Definition: read.cpp:79

Here is the caller graph for this function:

vector<string> Vectize ( const char **  ,
int   
)

Definition at line 192 of file clop.C.

References i.

193 {
194  vector<string> retVal;
195  if(n <= 0) return retVal;
196  int i = 0;
197  while((in[i] != NULL) && i < n)
198  retVal.push_back(in[i++]);
199  return retVal;
200 }
blockLoc i
Definition: read.cpp:79
const NT & n