~ubuntu-branches/ubuntu/saucy/kdevelop/saucy-proposed

« back to all changes in this revision

Viewing changes to projectmanagers/cmake/parser/cmaketypes.h

  • Committer: Package Import Robot
  • Author(s): Rohan Garg
  • Date: 2012-09-10 08:23:02 UTC
  • mfrom: (1.7.14)
  • Revision ID: package-import@ubuntu.com-20120910082302-o52tqtf27wc1dakk
Tags: 4:4.3.90-0ubuntu1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
 
22
22
#include "cmakelistsparser.h"
23
23
#include "variablemap.h"
24
 
namespace KDevelop { class Declaration; }
 
24
 
 
25
#include <language/duchain/indexeddeclaration.h>
25
26
 
26
27
struct Macro
27
28
{
42
43
{
43
44
    typedef QMap<QString, QString> Properties;
44
45
    enum Type { Library, Executable, Custom };
45
 
    KDevelop::Declaration* declaration;
 
46
    KDevelop::IndexedDeclaration declaration;
46
47
    QStringList files;
47
48
    Type type;
48
49
    CMakeFunctionDesc desc;