Subversion Repositories spk

Rev

Rev 9 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

#pragma once

#include "String.h"
#include "../lists.h"

namespace Utils {
        typedef struct {
                String str;
                String data;
        } SStringList;

        class SPKEXPORT CStringList : public CLinkList<SStringList>
        {
        public:
                void pushBack(const String &str, const String &data);
                void clear();
        };
} //NAMESPACE