Move Cephelepod into deprecated_compiler, create captian.sh to handle bootstrapping kraken from backup or from Cephelepod
This commit is contained in:
25
deprecated_compiler/include/CCodeTriple.h
Normal file
25
deprecated_compiler/include/CCodeTriple.h
Normal file
@@ -0,0 +1,25 @@
|
||||
#ifndef CCODETRIPLE_H
|
||||
#define CCODETRIPLE_H
|
||||
|
||||
#include <string>
|
||||
#include <iostream>
|
||||
#include "util.h"
|
||||
|
||||
class CCodeTriple {
|
||||
public:
|
||||
CCodeTriple(std::string pre, std::string val, std::string post);
|
||||
CCodeTriple(std::string val);
|
||||
CCodeTriple(const char* val);
|
||||
CCodeTriple();
|
||||
~CCodeTriple();
|
||||
std::string oneString(bool endValue = false);
|
||||
CCodeTriple & operator=(const CCodeTriple &rhs);
|
||||
CCodeTriple & operator+=(const CCodeTriple &rhs);
|
||||
|
||||
std::string preValue;
|
||||
std::string value;
|
||||
std::string postValue;
|
||||
private:
|
||||
};
|
||||
CCodeTriple operator+(const CCodeTriple &a, const CCodeTriple &b);
|
||||
#endif //CCODETRIPLE_H
|
||||
Reference in New Issue
Block a user