-
Notifications
You must be signed in to change notification settings - Fork 173
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cnetextract App and Test Update (#4109)
* Convert cnetextract and update tests * Adds a check for bad app inputs * Disabled old tests * Updated cnetextract BadInput test to be three different tests
- Loading branch information
1 parent
a5ce95b
commit 411d802
Showing
13 changed files
with
1,347 additions
and
1,182 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,38 @@ | ||
#ifndef cnetextract_h | ||
#define cnetextract_h | ||
|
||
#include <set> | ||
#include <sstream> | ||
|
||
#include <QMap> | ||
#include <QSet> | ||
#include <QVector> | ||
|
||
#include "Angle.h" | ||
#include "Camera.h" | ||
#include "ControlMeasure.h" | ||
#include "ControlNet.h" | ||
#include "ControlPoint.h" | ||
#include "Cube.h" | ||
#include "CubeManager.h" | ||
#include "Environment.h" | ||
#include "FileList.h" | ||
#include "IException.h" | ||
#include "IString.h" | ||
#include "Longitude.h" | ||
#include "Latitude.h" | ||
#include "TProjection.h" | ||
#include "Progress.h" | ||
#include "ProjectionFactory.h" | ||
#include "Pvl.h" | ||
#include "SerialNumber.h" | ||
#include "SurfacePoint.h" | ||
#include "UserInterface.h" | ||
|
||
namespace Isis { | ||
void cnetextract(UserInterface &ui, Pvl *log); | ||
|
||
void cnetextract(ControlNet outNet, UserInterface &ui, Pvl *log); | ||
} | ||
|
||
#endif |
Oops, something went wrong.