~ubuntu-branches/ubuntu/quantal/shotwell/quantal

« back to all changes in this revision

Viewing changes to src/alien_db/AlienDatabasePhoto.vala

  • Committer: Package Import Robot
  • Author(s): Robert Ancell
  • Date: 2012-02-21 13:52:58 UTC
  • mto: This revision was merged to the branch mainline in revision 47.
  • Revision ID: package-import@ubuntu.com-20120221135258-ao9jiib5qicomq7q
Tags: upstream-0.11.92
ImportĀ upstreamĀ versionĀ 0.11.92

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* Copyright 2011 Yorba Foundation
2
 
 *
3
 
 * This software is licensed under the GNU Lesser General Public License
4
 
 * (version 2.1 or later).  See the COPYING file in this distribution. 
5
 
 */
6
 
 
7
 
namespace AlienDb {
8
 
 
9
 
/**
10
 
 * The main interface for a single instance of a photo held in the database.
11
 
 * This interface assumes that the photograph can be accessed via the Vala
12
 
 * File classes.
13
 
 */
14
 
public interface AlienDatabasePhoto : Object {
15
 
    public abstract string get_folder_path();
16
 
    
17
 
    public abstract string get_filename();
18
 
    
19
 
    public abstract Gee.Collection<AlienDatabaseTag> get_tags();
20
 
    
21
 
    public abstract AlienDatabaseEvent? get_event();
22
 
    
23
 
    public abstract Rating get_rating();
24
 
    
25
 
    public abstract string? get_title();
26
 
    
27
 
    public abstract ImportID? get_import_id();
28
 
}
29
 
 
30
 
}
31