mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 22:02:58 -06:00
24 lines
373 B
C++
24 lines
373 B
C++
#ifndef __TCoreCalc__
|
|
#define __TCoreCalc__
|
|
|
|
#include <TCore/TCore.h>
|
|
#include "CalcType.h"
|
|
#include "CalcNode.h"
|
|
|
|
namespace Upp {
|
|
|
|
extern void UseCalcBasic();
|
|
|
|
String GroupComp();
|
|
String GroupBitOp();
|
|
String GroupArith();
|
|
String GroupLog();
|
|
String GroupString();
|
|
String GroupDate();
|
|
String GroupArray();
|
|
String GroupConst();
|
|
String GroupTrans();
|
|
|
|
}
|
|
|
|
#endif//__TCoreCalc__
|