|
cgma
|
#include "RefEntityName.hpp"#include "CubitString.hpp"#include "RefEntity.hpp"#include "CubitMessage.hpp"#include "CubitUtil.hpp"#include "CastTo.hpp"#include "RefGroup.hpp"#include "CubitAttribUser.hpp"#include "CADefines.hpp"#include <algorithm>#include "SettingHandler.hpp"#include <ctype.h>#include <assert.h>Go to the source code of this file.
Classes | |
| struct | DLIListSorter< CubitString > |
Functions | |
| static int | is_valid_char (char c) |
| static int | is_valid_first_char (char c) |
| static int is_valid_char | ( | char | c | ) | [static] |
Definition at line 639 of file RefEntityName.cpp.
{
return (!isascii(c) || isalnum(c) || c == '.' || c == '_' || c == '@');
}
| static int is_valid_first_char | ( | char | c | ) | [static] |
Definition at line 644 of file RefEntityName.cpp.
{
return (!isascii(c) || isalpha(c) || c == '_');
}