|
cgma
|
#include "InitCGMA.hpp"#include "CGMApp.hpp"#include "VirtualQueryEngine.hpp"#include "FacetQueryEngine.hpp"#include "FacetModifyEngine.hpp"#include "GeometryQueryTool.hpp"#include "GeometryModifyTool.hpp"#include "CubitUtil.hpp"#include "CADefines.hpp"#include "CubitAttrib.hpp"#include <ctype.h>Go to the source code of this file.
Classes | |
| class | CAAssemblyData |
Functions | |
| CubitAttrib * | CAAssemblyData_creator (RefEntity *entity, const CubitSimpleAttrib &p_csa) |
| static bool | streq_nocase (const char *s, const char *t) |
Variables | |
| static bool | has_been_initialized = false |
| static char * | first_engine_name = NULL |
| CubitAttrib* CAAssemblyData_creator | ( | RefEntity * | entity, |
| const CubitSimpleAttrib & | p_csa | ||
| ) |
Definition at line 31 of file InitCGMA.cpp.
{
return new CAAssemblyData(entity, p_csa);
}
| static bool streq_nocase | ( | const char * | s, |
| const char * | t | ||
| ) | [static] |
Definition at line 43 of file InitCGMA.cpp.
{
for (; *s; ++s, ++t)
if (tolower(*s) != tolower(*t))
return false;
return !*t;
}
char* first_engine_name = NULL [static] |
Definition at line 52 of file InitCGMA.cpp.
bool has_been_initialized = false [static] |
Definition at line 51 of file InitCGMA.cpp.