Coding in the name of's Profile User Rating: -----

Reputation: 65 Whiz
Group:
Active Members
Active Posts:
228 (0.22 per day)
Joined:
07-July 10
Profile Views:
3,222
Last Active:
User is offline Yesterday, 04:30 PM
Currently:
Offline

Previous Fields

Country:
GB
OS Preference:
Windows
Favorite Browser:
FireFox
Favorite Processor:
AMD
Favorite Gaming Platform:
PC
Your Car:
Who Cares
Dream Kudos:
0

Latest Visitors

Icon   Coding in the name of Dead

Posts I've Made

  1. In Topic: Probleming implementing method inherited from interface

    Posted 31 Mar 2013

    Thanks Skydiver, that fixed it.
  2. In Topic: Probleming implementing method inherited from interface

    Posted 31 Mar 2013

    Sorry, forgot that bit.

        public class Folder<T> : Resource, IResource where T : IResource
        {
            public Dictionary<string, T> resources = null;
    
            void IResource.Load(XmlNode node)
            {
                resources.Clear();
    
                foreach (XmlNode child in node.ChildNodes)
                {
                    T resource = default(T);
                    resource.Load(child);
                    resources.Add(child.Attributes["name"].Value, resource);
                }
            }
        }
    
  3. In Topic: C++ XML Parser, write one myself or find a good free one

    Posted 17 Jan 2013

    I'd recommend Boost.PropertyTree. It's a header-only library so you don't have to build anything.

    www.boost.org/doc/libs/1_52_0/doc/html/boost_propertytree/parsers.html#boost_propertytree.parsers.xml_parser
  4. In Topic: Vector iterating problem

    Posted 1 Jan 2013

    In this case the vector stores addresses but not the objects themselves. If you create the objects with new then you have to destroy them with delete.
  5. In Topic: Mechanics maths problem, please help me

    Posted 8 Dec 2012

    Thanks JorgenG! I understand it now.

My Information

Member Title:
D.I.C Head
Age:
21 years old
Birthday:
March 31, 1992
Gender:
Location:
Wales
Years Programming:
4

Contact Information

E-mail:
Click here to e-mail me

Friends

Comments

Page 1 of 1
  1. Photo

    ishkabible Icon

    19 Oct 2011 - 20:32
    your rep is a power of 2!!
  2. Photo

    c infant Icon

    15 Nov 2010 - 12:48
    thanks for the help m8, actually figured out where I was going wrong b4 looking at ur reply,but ur tips will come in handy for my next project.Thanks again c infant.
Page 1 of 1