Skip to content

Commit

Permalink
Cnetextract App and Test Update (#4109)
Browse files Browse the repository at this point in the history
* 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
acpaquette authored Nov 11, 2020
1 parent a5ce95b commit 411d802
Show file tree
Hide file tree
Showing 13 changed files with 1,347 additions and 1,182 deletions.
856 changes: 856 additions & 0 deletions isis/src/control/apps/cnetextract/cnetextract.cpp

Large diffs are not rendered by default.

38 changes: 38 additions & 0 deletions isis/src/control/apps/cnetextract/cnetextract.h
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
Loading

0 comments on commit 411d802

Please sign in to comment.