source: dev/BasicCompiler_Common/src/Source.cpp@ 87

Last change on this file since 87 was 87, checked in by dai_9181, 17 years ago

House::Metaを追加。
Source.h/Source.cppを追加(実装はこれから)。

File size: 502 bytes
Line 
1#include <Source.h>
2
3bool Text::ReadFile( const string &filePath ){
4 return true;
5}
6
7void Text::ChangeReturnLineChar(){
8}
9
10
11void BasicSource::RemoveComments(){
12}
13
14void BasicSource::DirectiveIfdef(){
15}
16void BasicSource::DirectiveIncludeOrRequire(){
17}
18
19void BasicSource::RemoveReturnLineUnderbar(){
20}
21
22void BasicSource::FormatDefStatement(){
23}
24void BasicSource::FormatIfStatement(){
25}
26
27bool BasicSource::Generate( const string &genName, const char *buffer ){
28 return true;
29}
Note: See TracBrowser for help on using the repository browser.