로딩중...
검색중...
일치하는것 없음
src.hpp
이 파일의 문서화 페이지로 가기
1
2
#pragma once
3
4
#include "
core/ast/src/srcFile.hpp
"
5
6
namespace
by {
15
class
_nout
src
:
public
instance {
16
BY(
CLASS
(
src
, instance))
17
18
public
:
19
src
(
const
srcFile
&
file
,
const
std::string& name,
const
point
&
pos
);
20
21
public
:
22
const
srcFile
* getFile()
const
;
23
const
point
& getPos()
const
;
24
const
std::string& getName()
const
;
25
virtual
void
setFile(
const
srcFile
& new1);
26
virtual
void
setPos(
const
point
& new1);
27
virtual
void
setName(
const
std::string& new1);
28
29
private
:
30
tstr<srcFile>
_file;
31
std::string _name;
32
point
_pos;
33
};
34
35
template
<
typename
T,
typename
WRP>
class
tnarr
;
36
typedef
tnarr<src>
srcs
;
37
}
by::srcFile
Source code file information
Definition
srcFile.hpp:14
by::src
Source location information
Definition
src.hpp:15
by::tnarr
Definition
tnarr.hpp:9
srcFile.hpp
to Top