-
Notifications
You must be signed in to change notification settings - Fork 799
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
renamed all READMEs to README.md and updated markdown syntax
- Loading branch information
1 parent
e72b42b
commit b829239
Showing
6 changed files
with
110 additions
and
133 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
Information for developers | ||
# Information for Developers | ||
|
||
Coding Conventions: | ||
### Coding Conventions | ||
|
||
* Classes are Uppercase, methods and functions lowerMixedCase | ||
* We use a modified K&R Style, with 2-space tabs, inserting spaces for tabs | ||
* Use meaningful variable names, e.g., measurement not msm | ||
* Classes are Uppercase, methods and functions lowerMixedCase. | ||
* We use a modified K&R Style, with 2-space tabs, inserting spaces for tabs. | ||
* Use meaningful variable names, e.g. `measurement` not `msm`. | ||
|
||
|
||
Windows: | ||
### Windows | ||
|
||
On Windows it is necessary to explicitly export all functions from the library | ||
which should be externally accessible. To do this, include the macro | ||
GTSAM_EXPORT in your class or function definition. | ||
On Windows it is necessary to explicitly export all functions from the library which should be externally accessible. To do this, include the macro `GTSAM_EXPORT` in your class or function definition. | ||
|
||
For example: | ||
```cpp | ||
class GTSAM_EXPORT MyClass { ... }; | ||
|
||
GTSAM_EXPORT myFunction(); | ||
GTSAM_EXPORT myFunction(); | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters