RetroShare/retroshare-gui/src/gui/PhotoShare/PhotoShareItemHolder.h
chrisparker126 9f20c75f83 about 70% done with PhotoDialog
- can add album (with thumbnail!)
- add photo (with photo!)
- can subscribe, but not added to ui yet

need to try some dummy msgs and bring up gxs_net





git-svn-id: http://svn.code.sf.net/p/retroshare/code/branches/v0.5-gxs-b1@5549 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2012-09-13 22:58:42 +00:00

23 lines
447 B
C++

#ifndef PHOTOSHAREITEMHOLDER_H
#define PHOTOSHAREITEMHOLDER_H
class PhotoShareItem
{
public:
PhotoShareItem() { return; }
virtual ~PhotoShareItem(){ return; }
virtual bool isSelected() = 0;
virtual void setSelected(bool selected) = 0;
};
class PhotoShareItemHolder
{
public:
PhotoShareItemHolder();
virtual void notifySelection(PhotoShareItem* selection) = 0;
};
#endif // PHOTOSHAREITEMHOLDER_H