Loading...
Searching...
No Matches
point.hpp
Go to the documentation of this file.
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}
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