Skip to content

Commit

Permalink
better sorting for headers, indentation in CMakeLists, re #10591
Browse files Browse the repository at this point in the history
  • Loading branch information
FedeMPouzols committed Feb 20, 2015
1 parent 6c7d435 commit e1ce967
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 30 deletions.
50 changes: 26 additions & 24 deletions Code/Mantid/Framework/RemoteAlgorithms/CMakeLists.txt
@@ -1,31 +1,31 @@
set( SRC_FILES
src/AbortRemoteJob.cpp
src/Authenticate.cpp
src/DownloadRemoteFile.cpp
src/QueryAllRemoteJobs.cpp
src/QueryRemoteFile.cpp
src/QueryRemoteJob.cpp
src/SimpleJSON.cpp
src/StartRemoteTransaction.cpp
src/StopRemoteTransaction.cpp
src/SubmitRemoteJob.cpp
src/UploadRemoteFile.cpp
src/SCARFTomoReconstruction.cpp
src/AbortRemoteJob.cpp
src/Authenticate.cpp
src/DownloadRemoteFile.cpp
src/QueryAllRemoteJobs.cpp
src/QueryRemoteFile.cpp
src/QueryRemoteJob.cpp
src/SimpleJSON.cpp
src/StartRemoteTransaction.cpp
src/StopRemoteTransaction.cpp
src/SubmitRemoteJob.cpp
src/UploadRemoteFile.cpp
src/SCARFTomoReconstruction.cpp
)

set( INC_FILES
inc/MantidRemoteAlgorithms/AbortRemoteJob.h
inc/MantidRemoteAlgorithms/Authenticate.h
inc/MantidRemoteAlgorithms/DownloadRemoteFile.h
inc/MantidRemoteAlgorithms/QueryAllRemoteJobs.h
inc/MantidRemoteAlgorithms/QueryRemoteJob.h
inc/MantidRemoteAlgorithms/QueryRemoteFile.h
inc/MantidRemoteAlgorithms/SimpleJSON.h
inc/MantidRemoteAlgorithms/StartRemoteTransaction.h
inc/MantidRemoteAlgorithms/StopRemoteTransaction.h
inc/MantidRemoteAlgorithms/SubmitRemoteJob.h
inc/MantidRemoteAlgorithms/UploadRemoteFile.h
inc/MantidRemoteAlgorithms/SCARFTomoReconstruction.h
inc/MantidRemoteAlgorithms/AbortRemoteJob.h
inc/MantidRemoteAlgorithms/Authenticate.h
inc/MantidRemoteAlgorithms/DownloadRemoteFile.h
inc/MantidRemoteAlgorithms/QueryAllRemoteJobs.h
inc/MantidRemoteAlgorithms/QueryRemoteJob.h
inc/MantidRemoteAlgorithms/QueryRemoteFile.h
inc/MantidRemoteAlgorithms/SimpleJSON.h
inc/MantidRemoteAlgorithms/StartRemoteTransaction.h
inc/MantidRemoteAlgorithms/StopRemoteTransaction.h
inc/MantidRemoteAlgorithms/SubmitRemoteJob.h
inc/MantidRemoteAlgorithms/UploadRemoteFile.h
inc/MantidRemoteAlgorithms/SCARFTomoReconstruction.h
)

set ( TEST_FILES
Expand All @@ -37,6 +37,8 @@ set ( TEST_FILES
#)
# No tests yet...

# Add a precompiled header where they are supported
enable_precompiled_headers ( inc/MantidRemoteAlgorithms/PrecompiledHeader.h SRC_FILES )
# Add the target for this directory
add_library ( RemoteAlgorithms ${SRC_FILES} ${INC_FILES})

Expand Down
@@ -1,4 +1,5 @@
#include "MantidRemoteAlgorithms/SCARFTomoReconstruction.h"
#include <fstream>

#include "MantidAPI/FileProperty.h"
#include "MantidAPI/WorkspaceFactory.h"
#include "MantidAPI/WorkspaceProperty.h"
Expand All @@ -11,17 +12,15 @@
#include "MantidKernel/NullValidator.h"
#include "MantidKernel/RemoteJobManager.h"
#include "MantidKernel/VisibleWhenProperty.h"

#include <fstream>
#include "MantidRemoteAlgorithms/SCARFTomoReconstruction.h"

#include <Poco/File.h>
#include <Poco/Net/HTTPRequest.h>
#include <Poco/StreamCopier.h>

#include <Poco/DOM/Document.h>
#include <Poco/DOM/DOMParser.h>
#include <Poco/DOM/Element.h>
#include <Poco/DOM/NodeList.h>
#include <Poco/Net/HTTPRequest.h>
#include <Poco/StreamCopier.h>

namespace Mantid {
namespace RemoteAlgorithms {
Expand Down

0 comments on commit e1ce967

Please sign in to comment.