로딩중...
검색중...
일치하는것 없음
point.hpp
이 파일의 문서화 페이지로 가기
1
2#pragma once
3
4#include "stela/common.hpp"
5
6namespace by {
12 struct _nout point {
13 point& operator++();
14
15 public:
16 nbool isOrigin() const;
17 void rel();
18
19 public:
20 ncnt row;
21 ncnt col;
22 };
23
29 struct _nout area {
30 area& operator++();
31
32 public:
33 void rel();
34
35 public:
36 point start;
37 point end;
38 };
39}
Deferred execution utility similar to defer keyword in other languages
Definition end.hpp:35
Source code area tracking structure
Definition point.hpp:29
Rich logging support with polymorphic type conversion
Definition richLog.hpp:34
Source code position tracking structure
Definition point.hpp:12