Versao com problema no socket rx

Dependencies:   EthernetInterface NTPClient mbed-rtos mbed

vector.h

Committer:
klauss
Date:
2014-09-10
Revision:
1:a1758104fa1d
Parent:
0:4d17cd9c8f9d

File content as of revision 1:a1758104fa1d:

#ifndef __VECTOR_H__
#define __VECTOR_H__

#include <stdlib.h>
#include "object.h"

class Vector{
    private:
        Object **objects;
        int elements;

    public: 
        Vector();
        ~Vector();
        void add( Object * e );
        Object * get_element( int position );
        void remove_element( int position );
        int find_element( Object * e );
        Object * find_element( int ext, int port );
        int size();
};
#endif