Ignore:
Timestamp:
Mar 7, 2012 7:37:12 AM (12 years ago)
Author:
ldelgass
Message:

Remove a couple of unneeded headers

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/packages/vizservers/nanovis/ParticleSystemFactory.h

    r2803 r2817  
    11/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
    2 #pragma once
     2#ifndef PARTICLESYSTEMFACTORY_H
     3#define PARTICLESYSTEMFACTORY_H
    34
    45#include <string>
    5 #ifdef _WIN32
    6 #include <expat/expat.h>
    7 #else
     6
    87#include <expat.h>
    9 #endif
    108
    119class ParticleSystem;
     
    1311class ParticleSystemFactory
    1412{
    15     ParticleSystem* _newParticleSystem;
     13    ParticleSystem *_newParticleSystem;
    1614public :
    1715    ParticleSystemFactory();
    1816    ~ParticleSystemFactory();
    1917
    20     ParticleSystem* create(const std::string& fileName);
     18    ParticleSystem *create(const std::string& fileName);
    2119
    2220private :
    23     void parseParticleSysInfo(const char** attrs);
    24     void parseEmitterInfo(const char**attrs);
     21    void parseParticleSysInfo(const char **attrs);
     22    void parseEmitterInfo(const char **attrs);
    2523
    2624    static void endElement(void *userData, const char *name);
     
    2826    static void text(void *data, const XML_Char *txt, int len);
    2927};
     28
     29#endif
Note: See TracChangeset for help on using the changeset viewer.