Skip to content

Commit a6575b0

Browse files
committed
noting
1 parent 1b7015e commit a6575b0

File tree

3 files changed

+45
-0
lines changed

3 files changed

+45
-0
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"files.associations": {
3+
"*.cjson": "jsonc",
4+
"*.wxss": "css",
5+
"*.wxs": "javascript",
6+
"*.c": "c",
7+
"*.gtpl": "html",
8+
"iostream": "cpp"
9+
}
10+
}
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#include <iostream>
2+
using namespace std;
3+
4+
class Point3d {
5+
public:
6+
virtual ~Point3d(){};
7+
float m;
8+
float n;
9+
private:
10+
static Point3d origin;
11+
float x,y,z;
12+
};
13+
14+
int main() {
15+
16+
}
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
class Point2d {
2+
protected:
3+
float _x, _y;
4+
};
5+
6+
class Vertex:public virtual Point2d {
7+
protected:
8+
Vertex *next;
9+
};
10+
11+
class Point3d : public virtual Point2d {
12+
protected:
13+
float _z;
14+
};
15+
16+
class Vertex3d: public Vertex, public Point3d {
17+
protected:
18+
float mumble;
19+
};

0 commit comments

Comments
 (0)