Skip to content

Commit

Permalink
Fix unix issues. Refs #9026.
Browse files Browse the repository at this point in the history
- Added missing DLL include.
- Revert to forward declaration of `CatalogSearchParam`.
  • Loading branch information
jawrainey committed Feb 20, 2014
1 parent 0a6469d commit d5b8673
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Code/Mantid/Framework/API/inc/MantidAPI/ICatalog.h
@@ -1,11 +1,17 @@
#ifndef MANTID_API_ICATLOG_H_
#define MANTID_API_ICATLOG_H_

#include "MantidAPI/ITableWorkspace.h"
#include "MantidICat/CatalogSearchParam.h"

namespace Mantid
{

//forward declarations
namespace ICat
{
class CatalogSearchParam;
}

namespace API
{

Expand Down
Expand Up @@ -4,6 +4,8 @@
#include <string>
#include <stdexcept>

#include "MantidAPI/DllConfig.h"

namespace Mantid
{
namespace ICat
Expand Down
Expand Up @@ -4,6 +4,7 @@
#include "MantidAPI/ICatalog.h"
#include "MantidICat/ICat3/ICat3ErrorHandling.h"
#include "MantidICat/ICat3/ICat3Helper.h"
#include "MantidICat/CatalogSearchParam.h"

namespace Mantid
{
Expand Down
Expand Up @@ -4,6 +4,7 @@
#include "MantidAPI/ICatalog.h"
#include "MantidAPI/TableRow.h"
#include "MantidKernel/Logger.h"
#include "MantidICat/CatalogSearchParam.h"

namespace Mantid
{
Expand Down
1 change: 1 addition & 0 deletions Code/Mantid/Framework/ICat/test/CompositeCatalogTest.h
Expand Up @@ -3,6 +3,7 @@

#include <cxxtest/TestSuite.h>

#include "MantidICat/CatalogSearchParam.h"
#include "MantidICat/CompositeCatalog.h"

#include <boost/make_shared.hpp>
Expand Down

0 comments on commit d5b8673

Please sign in to comment.