Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev #2

Merged
merged 22 commits into from
Apr 29, 2014
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
refactor
  • Loading branch information
cfo committed Apr 29, 2014
commit 922d73236bb6a2bfd153bbff73784676c28af07f
10 changes: 5 additions & 5 deletions svo/include/svo/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,16 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.

#ifndef NSLAM_CONFIG_H_
#define NSLAM_CONFIG_H_
#ifndef SVO_CONFIG_H_
#define SVO_CONFIG_H_

#include <string>
#include <stdint.h>
#include <stdio.h>

namespace svo {

using namespace std;
using std::string;

/// Global configuration file of SVO.
/// Implements the Singleton design pattern to allow global access and to ensure
Expand Down Expand Up @@ -154,6 +154,6 @@ class Config
int quality_max_drop_fts;
};

} // namespace nslam
} // namespace svo

#endif // NSLAM_CONFIG_H_
#endif // SVO_CONFIG_H_