We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c678d32 commit 529cb0cCopy full SHA for 529cb0c
contributing/guide.md
@@ -0,0 +1,16 @@
1
+# Guidlines
2
+## Copyright Headers
3
+respect omnet++ headers in all `c++` sources and the licence file.
4
+```cpp
5
+/*
6
+ * BFT_draft.cc
7
+ *
8
+ * Created on: Nov 9, 2020
9
+ * Author: lina
10
+ */
11
+```
12
+## Use underscores, not dashes in file and folders names.
13
+Example:
14
+- Use `DFT_v4.cc` instead of `DFT-v4.cc` or `DFTv4.cc` .
15
+- Use `DFT_v4` instead of `DFT-v4`.
16
+- Respect version order `DFT_v0`, `DFT_v1` ...
0 commit comments