Chat-O-Matic/application/Contact.h

38 lines
691 B
C
Raw Normal View History

/*
2011-12-03 16:38:03 -06:00
* Copyright 2009-2011, Andrea Anzani. All rights reserved.
* Copyright 2012, Dario Casalinuovo. All rights reserved.
* Distributed under the terms of the MIT License.
*/
#ifndef _CONTACT_LINKER_H_
#define _CONTACT_LINKER_H_
#include <String.h>
#include <Message.h>
#include <Messenger.h>
#include <Path.h>
2021-06-20 12:44:20 -05:00
#include "AppConstants.h"
#include "User.h"
class BBitmap;
class ProtocolLooper;
class RosterItem;
class Contact : public User {
public:
2021-05-23 14:39:07 -05:00
Contact(BString id, BMessenger msgn);
RosterItem* GetRosterItem() const;
void SetNotifyAvatarBitmap(BBitmap* bitmap);
private:
virtual void _EnsureCachePath();
RosterItem* fRosterItem;
};
#endif // _CONTACT_LINKER_H_