18 lines
295 B
C++
18 lines
295 B
C++
/**
|
|
* @file Pose2Factor.H
|
|
* @authors Frank Dellaert, Viorela Ila
|
|
**/
|
|
|
|
#pragma once
|
|
|
|
#include "BetweenFactor.h"
|
|
#include "Pose2.h"
|
|
#include "Pose2Config.h"
|
|
|
|
namespace gtsam {
|
|
|
|
/** This is just a typedef now */
|
|
typedef BetweenFactor<Pose2, Pose2Config> Pose2Factor;
|
|
|
|
} /// namespace gtsam
|