This file contains hidden or 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
| #!/bin/sh | |
| # chkconfig: 345 99 10 | |
| # description: Oracle auto start-stop script. | |
| # | |
| # Set ORA_HOME to be equivalent to the $ORACLE_HOME | |
| # from which you wish to execute dbstart and dbshut; | |
| # | |
| # Set ORA_OWNER to the user id of the owner of the | |
| # Oracle database in ORA_HOME. |
This file contains hidden or 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
| #include "Entity.hpp" | |
| using EntityComponentCoordinator; | |
| struct Position | |
| { | |
| Position(int x, int y) : x {x}, y {y} {} | |
| int x; |
This file contains hidden or 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
| #pragma once | |
| #include "TypeId.hpp" | |
| #include <boost/noncopyable.hpp> | |
| #include <map> | |
| #include <memory> | |
| #include <set> | |
| #include <type_traits> |
This file contains hidden or 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
| Reading shared_armor_bone_s01_bicep_l.iff | |
| FORM - STOT - children: 3 | |
| FORM - DERV - children: 1 | |
| XXXX - chunk size: 55 | |
| 0000: 6f 62 6a 65 63 74 2f 74 61 6e 67 69 62 6c 65 2f object/tangible/ | |
| 0010: 77 65 61 72 61 62 6c 65 73 2f 62 61 73 65 2f 73 wearables/base/s | |
| 0020: 68 61 72 65 64 5f 62 61 73 65 5f 62 69 63 65 70 hared_base_bicep | |
| 0030: 5f 6c 2e 69 66 66 00 _l.iff. | |
This file contains hidden or 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
| html_theme = '@SPHINX_THEME@' | |
| ... | |
| html_theme_path = ['@SPHINX_THEME_DIR@'] | |
| ... | |
| htmlhelp_basename = 'YOUR_PROJECT_NAMEdoc' |
This file contains hidden or 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
| find_package(Sphinx REQUIRED) |
This file contains hidden or 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
| set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake") |
This file contains hidden or 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
| .. toctree:: | |
| :maxdepth: 2 | |
| test | |
| ... |
This file contains hidden or 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
| ============= | |
| Test Document | |
| ============= |
This file contains hidden or 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
| find_program(SPHINX_EXECUTABLE NAMES sphinx-build | |
| HINTS | |
| $ENV{SPHINX_DIR} | |
| PATH_SUFFIXES bin | |
| DOC "Sphinx documentation generator" | |
| ) | |
| include(FindPackageHandleStandardArgs) | |
| find_package_handle_standard_args(Sphinx DEFAULT_MSG |