source: extensions/AMetaData/JpegMetaData/Readers/SegmentReader.class.php @ 4686

Last change on this file since 4686 was 4686, checked in by grum, 14 years ago

[Plugin:AMetaData] prepare the directory for a future plugin

  • Property svn:executable set to *
File size: 976 bytes
Line 
1<?php
2/*
3 * --:: JPEG MetaDatas ::-------------------------------------------------------
4 *
5 *  Author    : Grum
6 *   email    : grum at piwigo.org
7 *   website  : http://photos.grum.fr
8 *
9 *   << May the Little SpaceFrog be with you ! >>
10 *
11 * -----------------------------------------------------------------------------
12 *
13 *
14 * -----------------------------------------------------------------------------
15 *
16 * -----------------------------------------------------------------------------
17 */
18
19  class SegmentReader
20  {
21    protected $data = null;
22    protected $isValid = false;
23    protected $isLoaded = false;
24
25    function __construct(Data $data)
26    {
27      $this->data = $data;
28      $this->data->seek();
29    }
30
31    public function getIsValid()
32    {
33      return($this->isValid);
34    }
35
36    public function getIsLoaded()
37    {
38      return($this->isLoaded);
39    }
40
41    public function toString()
42    {
43      $returned="";
44      return($returned);
45    }
46
47  }
48
49
50?>
Note: See TracBrowser for help on using the repository browser.